@import url('https://cdn.tailwindcss.com');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Áp font và background cho section gốc */
section.bg-gray-50 {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb; /* tương đương bg-gray-50 của Tailwind */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


 @keyframes spin-slow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    .animate-spin-slow {
      animation: spin-slow 2s linear infinite;
    }
    #centers-list::-webkit-scrollbar {
      width: 8px;
    }
    #centers-list::-webkit-scrollbar-thumb {
      background-color: rgba(99, 102, 241, 0.5);
      border-radius: 4px;
    }
    #centers-list {
      scrollbar-width: thin;
      scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
    }